home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-05-10 | 540 b | 26 lines |
- # makefile for bez. this is gnu version.
- #
- # $Id: makefile.,v 1.2 1992/05/09 19:12:24 rosenkra Exp $
- #
- # $Log: makefile.,v $
- # Revision 1.2 1992/05/09 19:12:24 rosenkra
- # modified for use with GNU C and GNU make. -mshort is required.
- #
- #
- #
- CC = gcc -Wall -v -z -Ig:\gnu\gcc\include
- LD = gcc -Wall -v -z -Lg:\gnu\gcc\lib
- CFLAGS = -mshort -O
- LDFLAGS = -mshort
-
- TARGET = bez.ttp
- OBJS = bez.o
- LIBS =
-
- $(TARGET): $(OBJS)
- $(LD) $(LDFLAGS) -o $(TARGET) $(OBJS) $(LIBS)
- fixstk 64K $(TARGET)
-
- bez.o: bez.c
-
-